home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / sync / Sync_SlowWait.c < prev    next >
C/C++ Source or Header  |  1991-03-14  |  2KB  |  62 lines

  1. /* 
  2.  * Sync_SlowWait.c --
  3.  *
  4.  *    Source code for the Sync_SlowWait library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/sync/RCS/Sync_SlowWait.c,v 1.2 91/03/14 12:16:01 kupfer Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include <sync.h>
  22.  
  23.  
  24. /*
  25.  * ----------------------------------------------------------------------------
  26.  *
  27.  * Sync_SlowWait --
  28.  *
  29.  *      Wait on a condition.  Set waiting flag and perform system call to 
  30.  *    release the monitor lock and do the wait.  Reaquire the lock before
  31.  *    returning.
  32.  *
  33.  * Results:
  34.  *    TRUE if interrupted because of signal, FALSE otherwise.
  35.  *
  36.  * Side effects:
  37.  *      Put the process to sleep and release the monitor lock.
  38.  *    
  39.  * ----------------------------------------------------------------------------
  40.  */
  41.  
  42. Boolean
  43. Sync_SlowWait(conditionPtr, lockPtr, wakeIfSignal)
  44.     Sync_Condition    *conditionPtr;    /* Condition to wait on. */
  45.     register Sync_Lock     *lockPtr;    /* Lock to release. */
  46.     Boolean        wakeIfSignal;    /* TRUE => wake if signal pending. */
  47. {
  48.     ReturnStatus    status;
  49.  
  50.     if (!lockPtr->inUse) {
  51.     panic("Sync_SlowWait: monitor lock not held");
  52.     }
  53.  
  54.     conditionPtr->waiting = TRUE;
  55.  
  56.     status = Sync_SlowWaitStub(conditionPtr, lockPtr, wakeIfSignal);
  57.  
  58.     Sync_GetLock(lockPtr);
  59.  
  60.     return(status);
  61. }
  62.